home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet - Latest Software 2006
/
Internet LS 2006.iso
/
Internet Survival Kit
/
AutorunSRC
/
isk.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-01-28
|
232 b
|
15 lines
program isk;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Internet Survival Kit';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.